


.formulario-login {
  background: rgba(255, 255, 255, 0.9); /* fundo branco levemente transparente */

  z-index: 10;
  position: relative;
}


  .login-card {
    max-width: 380px;
    margin: 40px auto;
    padding: 32px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  }

  .login-card h2 {
    text-align: center;
    margin-bottom: 24px;
    font-weight: 600;
    font-size: 24px;
    color: #333;
  }

  .form-group {
    margin-bottom: 20px;
  }

  .form-label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    color: #555;
  }

  .form-control {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #ced4da; /* Borda visível */
    border-radius: 10px;
    background-color: #fff;
    font-size: 15px;
    transition: border-color 0.3s, box-shadow 0.3s;
  }

  .form-control:focus {
    outline: none;
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.1rem rgba(13, 110, 253, 0.25);
  }

  .form-error {
    color: #dc3545;
    font-size: 0.85em;
    margin-top: 4px;
  }

  .btn-login {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 10px;
    background-color: #6c757d;
    color: white;
    font-size: 16px;
    font-weight: 500;
    transition: background-color 0.3s ease;
  }

  .btn-login:hover {
    background-color: #6c757d;
  }

  .form-footer {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
  }

  .form-footer a {
    color: #0d6efd;
    text-decoration: none;
  }

  #id_email,
  #id_login,
  #id_password,
  #id_password1,
  #id_password2 {
      font-size: 18px !important;
    }